home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <meta http-equiv="refresh" content=20>
- <meta NAME="Author,Design" Content="GateKeeper Team; gatekeeper@infopulse.net">
- <meta NAME="Copyright" Content="Infopulse; www.infopulse.net">
- <title>Empty</title>
- </head>
-
- <body>
- <p><big><strong><font face="Arial">Current proxies</font></strong></big></p>
- <div align="center"><center>
- <table border="1" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Type
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Running
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Enabled
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Log
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- In
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Fwd
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Out
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- OutIP
- </font></strong></td>
- <td align="center" bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF">
- Action
- </font></strong></td>
- </tr>
- <%
- for i = 1 to Proxies.count
- Set proxy = Proxies.item(i)
- strProps = proxy.GetPropertyNames
- %>
- <tr>
- <td align="center"><strong><font face="Arial">
- <%Response.Write(proxy.Type)%>
- </font></strong></td>
- <td align="center"><font face="Arial">
- <%
- if proxy.Running Then
- Response.Write("Yes")
- Else
- Response.Write("<b><font color=""#ff0000"">No</font></b>")
- End If
- %>
- </font></td>
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Enabled") > 0 ) then
- propVal = proxy.GetBoolProperty("Enabled")
- if propVal Then
- propVal = "Yes"
- Else
- propVal = "No"
- End if
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Logging") > 0 ) then
- propVal = proxy.GetBoolProperty("Logging")
- if propVal Then
- propVal = "Yes"
- Else
- propVal = "No"
- End if
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Input_Port") > 0 ) then
- propVal = proxy.GetNumberProperty("Input_Port")
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Forwarding_Enabled") > 0 ) then
- propVal = proxy.GetBoolProperty("Forwarding_Enabled")
- if propVal Then
- propVal = "Yes"
- Else
- propVal = "No"
- End if
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Output_Port") > 0 ) then
- propVal = proxy.GetNumberProperty("Output_Port")
- if propVal = 0 Then
- propVal = "<b>-</b>"
- end if
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <%
- propVal = "<b>-</b>"
- if( InStr(strProps,"Output_Address") > 0 ) then
- propVal = proxy.GetStringProperty("Output_Address")
- if Len(propVal) = 0 Then
- propVal = "<b>-</b>"
- End if
- End if
- %>
- <td align="center"><font face="Arial">
- <%Response.Write(propVal)%>
- </font></td>
-
- <form action="/proxies/editproxy.agp" method="POST">
- <td align="center" nowrap="True">
- <input type="hidden" name="ProxyNo" value="<%Response.Write( i )%>" >
- <input type=submit name="action" value=" Edit ">
- <input type=submit name="action" value="Delete">
- </td>
- </form>
- </tr>
- <%
- next
- %>
- </table>
- </center></div>
- <br>
- <font size="1" face="Arial"><%Response.Write(GateKeeper.Version)%></font>
-
- </body>
- </html>
-